home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Resources / System / BoingBag1 / Contributions / InstallerNG / examples / stringformat.installer < prev    next >
Text File  |  1999-10-15  |  372b  |  21 lines

  1.  
  2. (user expert)
  3. (set @proceed-button "Really cool..."
  4.      @abort-button "This sucks !"
  5. )
  6.  
  7. ; demonstration of the string format function
  8.  
  9. (set text1 ("%s %s %s" ("Hello")
  10.                        (" Wo%s" ("%sld " "r"))
  11.                        "!"
  12.            )
  13. )
  14.  
  15. (set text2 ("\n\nsome math: %ld * %ld = %ld" 30 40 (* 30 40)))
  16.  
  17. (exit ("%s%s" text1 text2) (quiet))
  18. (welcome)
  19.  
  20.  
  21.